* {
    box-sizing: border-box;
}
html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    font-family: "Open Sans", sans-serif;
    scroll-behavior: smooth;
}

/* Static effect */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 10px 10px;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.1;
}

.oswald {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
}

.fade-in.visible {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.producer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Language dropdown */
.language-dropdown {
    position: relative;
}

.language-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.language-dropdown-menu {
    position: absolute;
    right: 0;
    top: 100%;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 50;
}

.language-dropdown:hover .language-dropdown-menu {
    opacity: 1;
    visibility: visible;
    border-radius: 0.5rem;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #030303;
    transition: background-color 0.2s;
}

.language-option:hover {
    background-color: #dfdfdf;
    border-radius: 0.5rem;
}

.flag-icon {
    width: 24px;
    height: 16px;
    margin-right: 0.75rem;
}

/* Modern Mobile Language Dropdown */
.mobile-language-dropdown {
    margin-top: 2rem;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.mobile-language-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.mobile-language-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-language-btn i {
    transition: transform 0.3s ease;
}

.mobile-language-btn.active i {
    transform: rotate(180deg);
}

.mobile-language-options {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 0.5rem 0.5rem;
}

.mobile-language-options.active {
    max-height: 300px;
}

.mobile-language-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-language-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #38bdf8;
}

.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("/assets/images/bw-studio.jpg");
    height: 100vh;
}

/* Inspirational text section */
.insp-text {
    background-color: black;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.insp-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.3;
}

/* Recording section - redesigned to blend better */
.recording-section {
    background-color: #111;
    color: white;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.recording-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/assets/images/studio.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.recording-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.recording-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: center;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.recording-content {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 25px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border-left: 3px solid #38bdf8;
}

.recording-list {
    margin-top: 20px;
    padding-left: 20px;
}

.recording-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.recording-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
    color: #38bdf8;
}

/* Mobile menu adjustments */
.mobile-nav {
    height: 80px;
}

.mobile-menu {
    top: 80px;
}

.producer-image-m {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    object-position: top;
}

.producer-image-j {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    object-position: center;
}

/* Producer cards in row */
.producers-grid {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .producers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .producers-grid {
        grid-template-columns: 1fr;
    }
}
